/* ===== SEKCJA O MNIE ===== */

/* ISOLACJA: reset wszystkich dziedziczonych stylów */
.about-wrapper-reset,
.about-wrapper-reset * {
    all: unset;
    box-sizing: border-box;
}

/* WRAPPER FLEX */
.about-wrapper-reset {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LEWA KOLUMNA: ZDJĘCIE */
.about-photo {
   flex: 0 0 45% !important;
}
.about-photo img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    display: block;
    object-fit: cover;
}

/* PRAWA KOLUMNA: TEKST */
.about-text {
    flex: 0 0 55% !important;
    text-align: left !important;
}

/* NAGŁÓWEK */
.about-title {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #222;
}

/* PARAGRAFY */
.about-text p {
  font-size: 1em;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

/* MOBILE */
@media(max-width:900px){
    .about-wrapper-reset{
        flex-direction: column !important;
        text-align: center !important;
    }

    .about-photo,
    .about-text{
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
}
</style>

